_end is already declared in xen/include/asm/config.h, so don't declare
it twice. This solves a powerpc/ia64 build problem where _end is declared
as char _end[] compared to unsigned long _end on x86.
Signed-Off-By: Magnus Damm <magnus@valinux.co.jp>
return 0;
}
-extern unsigned long _text, _end;
+extern unsigned long _text;
static int kexec_get_xen(xen_kexec_range_t *range, int get_ma)
{
else
range->start = (unsigned long) &_text;
- range->size = &_end - &_text;
+ range->size = (unsigned long)&_end - (unsigned long)&_text;
return 0;
}